texture: Fix typo in error message
authorThomas Lange <thomas-lange2@gmx.de>
Sat, 1 Jan 2022 17:23:22 +0000 (17:23 +0000)
committerThomas Lange <thomas-lange2@gmx.de>
Sat, 1 Jan 2022 17:23:22 +0000 (17:23 +0000)
gdk/gdktexture.c

index 51663a7eec5aa59cd6d57745f2094ba32638e8ff..2cf33fda5ce24e9a4d710e7ea1592068797e93bd 100644 (file)
@@ -454,7 +454,7 @@ gdk_texture_new_from_resource (const char *resource_path)
     texture = NULL;
 
   if (texture == NULL)
-    g_error ("Resource path %s s not a valid image: %s", resource_path, error->message);
+    g_error ("Resource path %s is not a valid image: %s", resource_path, error->message);
 
   return texture;
 }